projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18e5a64
)
(report-emacs-bug-hook): Fix the regexp for
author
Richard M. Stallman
<rms@gnu.org>
Fri, 3 Apr 1998 05:11:30 +0000
(
05:11
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 3 Apr 1998 05:11:30 +0000
(
05:11
+0000)
matching non-ASCII characters.
lisp/mail/emacsbug.el
patch
|
blob
|
history
diff --git
a/lisp/mail/emacsbug.el
b/lisp/mail/emacsbug.el
index 3383642b8451647656a7261be2c0a065412da939..de4e1f4c24ed8c2b30dd463eb1cfbcf3489a68ee 100644
(file)
--- a/
lisp/mail/emacsbug.el
+++ b/
lisp/mail/emacsbug.el
@@
-190,7
+190,7
@@
Type SPC to scroll through this section and its subsections.")))
(save-excursion
(goto-char (point-min))
(let ((enable-multibyte-characters nil)
- (pattern (format "[
%c-%c]" 128 255
))
+ (pattern (format "[
^%c-%c]" 0 127
))
ch)
(while (re-search-forward pattern nil t)
(setq ch (preceding-char))